home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 41 / Amiga Format CD41 (1999-06)(Future Publishing)(GB)[!][issue 1999-07].iso / -seriously_amiga- / comms / www / lynx282dev21 / changes next >
Text File  |  1999-04-19  |  5KB  |  78 lines

  1. 1999-03-30 (2.8.2dev.21)
  2. * disable LYatexit if memory-leak testing is not configured.
  3. * fixes for unhighlighting problems with color-style support (Vlad Harchev)
  4. * remove '(default: on)' and '(default: off)' strings from configure script
  5.   help message (much lynx-dev discussion) - TD
  6. * remove outdated link to the WebTechs HTML Validation Service from help menu
  7.   and change link to more suitable location for rfc1945 - PW
  8. * correct logic of --disable-full-paths configure option (reported by Georg
  9.   Schwarz) - TD
  10. * fix problems building on OpenVMS with DECC 6.2 (reported by Andy Harper 
  11.   <Andy.Harper@kcl.ac.uk>)
  12.   + remove 'DEBUG' definition from build scripts since it is defined in
  13.     the source code.
  14.   + turn off code that tries to use getpwuid(), by defining NOUSERS, since
  15.     those functions are not present on VMS.
  16.   + provide a dummy location for h_errno for systems without that symbol.
  17.   + correct string syntax in VMSexit function
  18.   + ifdef'd use of lynx_version_putenv_command in LYMain.c
  19.   + correct spurious parenthesis in mailform function
  20.   + correct missing COPY_PATH definition for LYUtils.c
  21. * Check for 'z' user interrupt in HTLoadHTTP before setting up the output
  22.   stream.  This avoids doing unnecessary work, including possible creation of a
  23.   new HText structure that most likely is never displayed but still pushes
  24.   another document out of the.  cache.  Most commonly this occurs when a HTTP
  25.   error response is received and the user presses 'z' while the resulting alert
  26.   message is shown - LW
  27. * Fix of HTUnEscapeSome in HTParse.c for non-ASCII - KW, PG
  28. * tidy up around ed_offset initialization in GridText.c - KED
  29.   (the patch as given will not compile on a non-ANSI compiler because it uses
  30.   aggregate initialization, and it's not clear why the ed_offset variable
  31.   must be initialized since the variable is sprintf'd before use - TD)
  32. * add samples/mild-colors.lss (Vlad Harchev)
  33. * add samples/blue-background.lss (from Sergey Svishchev <svs@ropnet.ru>)
  34. * documentation updates for INSTALLATION and PROBLEMS - PW
  35. * use HTConfirm and HTConfirmDefault to gettext'ify CONFIRM_BOOKMARK_DELETE,
  36.   CONFIRM_COMMENT, CONFIRM_LONG_PAGE_PRINT, CONFIRM_LONG_SCREEN_PRINT,
  37.   CONFIRM_MAIL_SOURCE_PREPARSED, CONFIRM_MAIN_SCREEN, FILE_EXISTS_HPROMPT,
  38.   FILE_EXISTS_OPROMPT, NO_OWNER_USE, PREV_DOC_QUERY, REALLY_EXIT_N,
  39.   REALLY_EXIT_Y, REALLY_QUIT_N, REALLY_QUIT_Y (based on report by LP) - TD
  40. * at LYNXCFG:/ page, add links for every included configuration file so we can
  41.   read and edit them (no, currently the changes will be active the next session
  42.   only.  Minor reorganization of LYMain.c done, more required) - LP
  43. * correct test/spaces.html - it should not be in a <PRE> mode by default - LP
  44. * undo recent   changes so it is a single space as before (suggested by
  45.   KW) - LP
  46. * add ETag anchor element (currently not used, only for information) - LP
  47. * assign LYNXCFG:/ and LYNXCOMPILEOPTS:/ for internal pages of parsed lynx.cfg
  48.   and compile-time info.  Now we will not see a temp file link name in a
  49.   statusline in advanced mode, also kill overhead since pages created only when
  50.   really accessed - LP
  51. * form-based options menu:  the bug described in 1999-03-17 changes now finally
  52.   fixed - LP
  53. * fix expanding entities for x-transparent display charset
  54.   (was broken from 1999-03-04 changes) - LP
  55. * trimmed trailing blanks from *.tbl, fixed chrtrans/def7_uni.tbl and
  56.   chrtrans/viscii_uni.tbl, ensure that it produces correct result - TD
  57. * chrtrans/def7_uni.tbl - entries with trailing spaces now explicitely enclosed
  58.   in quotes to avoid problems with integrating the patches sent by e-mail,
  59.   more comments added - LP
  60. * attempt to implement --disable-ftp (John Bley)
  61. * fix tiny memory leak in HTAAUtil.c (John Bley)
  62. * chop useless #includes from LYHash.c, LYExtern.c, LYCurses.h (John Bley)
  63. * --disable-news was also disabling ftp, --disable-finger without
  64.   --disable-gopher wasn't right (John Bley)
  65. * remove a duplicate #include from HTFTP.c (John Bley)
  66. * remove several obsolete files from the source distribution (John Bley)
  67.   WWW/Library/Implementation/HTAAServ.*
  68.   WWW/Library/Implementation/HTAAFile.*
  69.   WWW/Library/Implementation/HTAuth.*
  70.   WWW/Library/Implementation/HTACL.*
  71.   WWW/Library/Implementation/HTPasswd.*
  72.   WWW/Library/Implementation/HTHistory.*
  73. * --disable-partial wasn't compiling because of a supressed #include, replace
  74.   one more free() with FREE() (John Bley)
  75. * correct typo LIsListpageTitle vs LYIsListpageTitle
  76.   (reported by Artur Frysiak <wiget@usa.net> and KED)
  77. * don't append sed expression to help_files.sed if the $(COMPRESS_EXT)
  78.   variable is empty - TD